home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / MPW_TOOL / TOOLS / TOOLS_WI / ICON_8 / H_FOLDER / TIME.H < prev    next >
Text File  |  1990-03-02  |  372b  |  20 lines

  1. typedef long time_t;
  2. typedef long clock_t;
  3.  
  4. struct tm {
  5.   short tm_sec;
  6.   short tm_min;
  7.   short tm_hour;
  8.   short tm_mday;
  9.   short tm_mon;
  10.   short tm_year;
  11.   short tm_wday;
  12.   short tm_yday;
  13.   short tm_isdst; /* Not available on Macintosh */
  14.   short tm_hsec;  /* Not available on Macintosh */
  15. };
  16.  
  17. struct tm *gmtime(), *localtime();
  18. char *asctime(), *ctime();
  19. time_t time();
  20.